* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    font-size: 62.5%;
}

body {
    font-family: 'Lato', sans-serif !important;
    background-color: rgb(19, 19, 19);
    background-image: url(../img2/logic_wallpaper.webp); 
    background-size: 100%;
    background-attachment: fixed ;
    font-size: 1.3rem;
    padding-top: 0rem;
}

/** Globales**/
h1 {
    font-size: 4.5rem;
    color: white;
    text-align: center;
}

h2 {
    font-size: 4.5rem;
    color: white;
    text-align: center;
    margin: 3rem;
}

h3 {
    font-size: 3.5rem;
    color: black;
    text-align: center;
    margin: 3rem;
}

h4 {
    font-size: 2.5rem;
    color: black;
    text-align: center;
    margin: 1rem;
}
h5 {
    font-size: 1.3rem;
    color: white;
    text-align: center;
}
h6 {
    font-size: 1.8rem;
    color: black;
    text-align: center;
    margin: 0rem;
    font-weight: 400 ;
}
p {
    font-weight: 400;
    font-size: 2rem;
    color: white;
    text-align: justify;
    margin: 6rem;
}
.bordes{
border-radius: 1.5rem 1.5rem 1.5rem 1.5rem;
box-shadow: 2px 2px 5px rgb(0, 0, 0)
}
/** Banner Imagenes**/
.banner .md{
    display:none;
    max-height: 100%;
}
.banner .sm{
    display:none;
    max-height: 100%;
}
.banner .lg{
   display: block;
   max-height: 100%;
}
.caja {
 margin: 0;
 padding: 0;
}
.contenedor-p{
   position: relative;
   width: 100%;
   height: 80vh;
   /**overflow: hidden;**/
   display: flex;
   justify-content: center;
   align-items: center;

  }
 .contenedor-p img{
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 object-fit: cover;
 } 
/** Botones**/
button{
    outline:none;
    text-decoration:none;
}
.boton{
    display: flex;
    justify-content: space-around;
    margin-left: 85%;
    color:white;
    padding: 1rem 1rem;
    width: 15%;
    text-decoration: none;
}
.boton-rojo {
    background-color: #BF0005;

}
.boton-gris {
    width: 25%;
    margin-left: 75%;
}
.boton-blog{
    display: flex;
    justify-content: space-around;
    margin-left: 70%;
    color:white;
    padding: 1rem 1rem;
    width: 30%;
    text-decoration: none;
}
/** Menu**/
header {
    background-color: rgba(19, 19, 19, 0.8);
    width: 100%; /* hacemos que la cabecera ocupe el ancho completo de la página */
	left: 0; /* Posicionamos la cabecera al lado izquierdo */
	top: 0; /* Posicionamos la cabecera pegada arriba */
    position: fixed;
    z-index:9999;
}
.menu {
    width: 90%;
    max-width: 80%;
    margin: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.menu .logo {
    display: inline-block;
    margin-right: 1rem;
}
.menu .logo img {
    vertical-align: center;
    max-width: 80%;
}
.menu .btn-menu {
    display: none;
    color: white;
    text-decoration: none;
    width: 5rem;
}
.menu .enlaces {
    display: inline-block;
    text-align: right;
    font-size: 1.5rem;
}
.menu .enlaces a {
    color: white;
    text-decoration: none;
    display: inline-block;
    padding: 1rem;
    text-align: center;
}
.menu .enlaces a:hover {
   color: #BF0005;
   font-style: bold;
   text-decoration: underline;
}  

footer {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
}
footer .logo{
    display: inline-block;
    margin-right: -10%;
}

footer .logo-2{
    display: inline-block;
}
footer .logo-2 img{
    vertical-align: center;
    max-width: 8%;
    margin: 2%;
}
.legal{
    vertical-align: center;
    color: #fff;
}
.legal-2 {
    vertical-align: center;
    color: #fff;
    margin-top: 4rem;
}
.legal-2 a{
    text-decoration: none;
}
/** Efectos del Menu**/
.headroom {
    transition: transform .3s ease;
}
/**. headroom--pinned{
    transform: translateY(0%);
}
. headroom--unpinned{
    backgroun: rgba(19, 19, 19, 125); 
}
**/

/**Blog**/
.cuerpo-blog {
    display: flex;
    width: 50%;
    background-color: white;
    margin: 1%;   
    padding: 2rem;
    align-content: center;
    justify-content: center;
}
.cuerpo-blog p {
    color: black;
    font-size: 1.8rem;
    margin: 1rem 0rem;
}
.nota-blog{
    background-color:rgb(19, 19, 19);
    width:70%;
    max-width: 160rem;
    margin: auto;
}
.texto-blog {
    display: flex;
    max-width: auto ;
    flex-direction: column;
    margin: auto;
}
.texto-blog img{
    margin: 0 0 0 4%;
    width: 15%;
}
.texto-blog-container{
    display: flex;
    flex-direction: row;
    align-items: center;
    vertical-align: middle;
}

/**Efecto Imagen**/
figure.burbuja {
    position: relative;
    overflow: hidden;
    color: #ffffff;
    text-align: center;
    font-size: 1rem;
    background-color: #000000;
  }
  figure.burbuja *,
  figure.burbuja *:before,
  figure.burbuja *:after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 0.55s ease;
    transition: all 0.55s ease;
  }
  figure.burbuja img {
    width: 100%;
    backface-visibility: hidden;
    opacity: 0.9;
  }
  figure.burbuja .titulo {
    position: absolute;
    top: 58%;
    left: 25px;
    padding: 5px 10px 10px;
  }
  figure.burbuja .titulo:before,
  figure.burbuja .titulo:after {
    height: 2px;
    width: 400px;
    position: absolute;
    content: '';
    background-color: #ffffff;
  }
  figure.burbuja .titulo:before {
    top: 0;
    left: 10px;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  figure.burbuja .titulo:after {
    bottom: 0;
    right: 10px;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  figure.burbuja .titulo div:before,
  figure.burbuja .titulo div:after {
    width: 2px;
    height: 300px;
    position: absolute;
    content: '';
    background-color: #ffffff;
  }
  figure.burbuja .titulo div:before {
    top: 10px;
    right: 0;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
  figure.burbuja .titulo div:after {
    bottom: 10px;
    left: 0;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  figure.burbuja h2,
  figure.burbuja h4 {
    margin: 0;
    text-transform: uppercase;
  }
  figure.burbuja h2 {
    font-size: 2.5rem;
  }
  figure.burbuja h3 {
    font-size: 4rem;
    color: #ffffff;
  }
  figure.burbuja h4 {
    display: block;
    font-weight: 2rem;
    background-color: #ffffff;
    padding: 5px 10px;
    color: #000000;
  }
  figure.burbuja figcaption {
    position: absolute;
    bottom: 42%;
    left: 2.5rem;
    text-align: left;
    opacity: 0;
    padding: 0.5rem 6rem 0.5rem 1rem;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 1.3px;
  }
  figure.burbuja figcaption p {
    margin: 0;
  }
  figure.burbuja a {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
  }
  figure.burbuja:hover img,
  figure.burbuja.hover img {
    zoom: 1;
    filter: alpha(opacity=35);
    -webkit-opacity: 0.35;
    opacity: 0.35;
  }
  figure.burbuja:hover .titulo:before,
  figure.burbuja.hover .titulo:before,
  figure.burbuja:hover .titulo:after,
  figure.burbuja.hover .titulo:after,
  figure.burbuja:hover .titulo div:before,
  figure.burbuja.hover .titulo div:before,
  figure.burbuja:hover .titulo div:after,
  figure.burbuja.hover .titulo div:after {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  figure.burbuja:hover .titulo:before,
  figure.burbuja.hover .titulo:before,
  figure.burbuja:hover .titulo:after,
  figure.burbuja.hover .titulo:after {
    -webkit-transition-delay: 0.15s;
    transition-delay: 0.15s;
  }
  figure.burbuja:hover figcaption,
  figure.burbuja.hover figcaption {
    opacity: 1;
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
  }
/**Formularios**/
.formulario-grupo {
display:flex;
align-content: center;
text-align: left;
font-family: 'Lato', sans-serif !important;
color:white;
font-size: 1.8rem;
padding-top: 0rem;
flex-direction: column;
margin: 0.5rem;
}
.formulario-grupo h3{
    color: black;
}
.formulario-control {
    max-width: 100%;
    margin: 0.5rem;
}
.cuerpo-form{
    display: flex;
    width: 80%;
    background-color: rgb(26, 26, 26);
    margin: 0% 10%;   
    padding: 5rem;
    align-content: center;
    justify-content: center;
}
/** Calendarios **/
.input-calendar {
	display: block;
	width: 100%;
	max-width: 36rem;
	margin: 0 auto;
	height: 3rem;
	line-height: 3rem;
	font: inherit;
	padding: 0 1rem;
	border: 0.1rem solid #d8d8d8;
	box-shadow: 0 4px 12px rgba(0, 0, 0, .25);
}
.btn-calendar {
	display: block;
	width: 100%;
	max-width: 36rem;
	height: 3rem;
	line-height: 3rem;
	background-color: #52555a;
	margin: 0 auto;
	font-weight: 600;
	color: #FFFFFF !important;
	text-decoration: none !important;
	box-shadow: 0 4px 12px rgba(0, 0, 0, .25);
}
.btn-calendar:hover {
	background-color: #5a6268;
}
alert-pepe{
    background-color: #525252;
}

.form-group label, p{
  font-weight: 300;
  color: white;
}
.form-control{
  font-weight: 300; 
}
.panel-body{
	height: 33px; 
    background-color: white; 
}
.glyphicon{
    color: white;
   }
   
.loader {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: url('images/pageLoader.gif') 50% 50% no-repeat rgb(249,249,249);
    opacity: .8;
}

/** Fondos **/   
.fondo-blanco {
    padding:0;
    background-color: white;
}

.fondo-negro{
    background-color: rgb(26, 26, 26);
    margin: 0rem;
    padding-top: 0rem;
}
.fondo-negro h3{
    color: white;
}
.wallpaper {
    background-image: url(/img2/logic_wallpaper.jpg);   
    background-size: 100%;
   }
.wallpaper-Purgatorio {
    background-image: url(/img2/fondo-purgatorio.jpg);   
    background-size: 100%;
}
.wallpaper-templarios {
    background-image: url(/img2/fondo-templarios.jpg);   
    background-size: 100%;
}
.wallpaper-rey {
    background-image: url(/img2/fondo-reynegro.jpg);   
    background-size: 100%;
}
/** Color Fuentes **/
.negro {
    color: black;
}
.blanco{
    color: white;
}   

/* Footer*/   

footer {
    background-color: rgb(19, 19, 19, 180);
}

/* Estilos*/
.wrapper {
    width:90%;
    max-width: 160rem;
    margin: auto;
    overflow: hidden;
}
.wrapper-2 {
    width:80%;
    max-width: 160rem;
    margin: auto;
    overflow: hidden;
}
.contenedor {
    max-width: 120rem;
    margin: 0 auto;
}
.imagenes-gral{
    display: flex;
    justify-content: space-between;
    text-align: center;
    position: static;
}
.imagenes-gral-2{
    display: flex;
    justify-content: space-between;
    text-align: center;
    position: static;
    padding: 0rem 3rem;
}
.imagenes-gral-3{
    display: flex;
    justify-content: space-between;
    text-align: center;
    position: static;
    padding: 0rem 3rem;
}
.imagenes-gral-4{
    display: flex;
    justify-content: space-between;
    text-align: center;
    position: static;
    vertical-align: center;
    padding: 0rem 3rem;
}
.zoom img:hover{
    filter: blur(0.15rem);
}
.imagen{
    flex-basis: calc(33.3% - 1rem);
    padding: 1rem 0rem;
}
.imagen-2{
    flex-basis: calc(25% - 1rem);
    padding: -1rem 1rem;

}
.imagen-evento{
    flex-basis: calc(50% - 1rem);
    width: 100%;
}
.imagen-blog{
    flex-basis: calc(25% - 1rem);
}
.imagen-iconos{
    display: flex;
    flex-direction: column;
    align-items: center;
    vertical-align: middle;
    }
.margenes{
    padding: 2rem 0rem;
}
.iconos-encima{
    color: white;
    font-size: 4rem;
    position: absolute;
    top: 0rem;
    left: 1.5rem;
    right: 1.5rem;
}
.contenedor-iconos{
    position: relative;
    display: inline-block;
    text-align: top;
}
.iconos{
    width:2.5rem;
    height:2.5rem;
    flex-basis: calc(33.3% - 1rem);
}
.iconos-poster{
    height: 2.5rem;
    width: 2.5rem;
    margin-top: 3rem;
    flex-basis: calc(33.3% - 1rem);
    
}
.boton-poster{
    max-width: 80%;
    margin-top: 47rem;
    }
.iconos-salas{
    height: 5rem;
    width: 5rem;
    padding-top: 2rem;
    flex-direction: column;
    align-items: center;
   }
.contenedor-texto{
    width: 100%;
    position: relative;
    display: inline-block;
    text-align: center;
}
.texto-encima{
    color: white;
    font-size: 4rem;
    position: absolute;
    top: 15rem;
    left: 1.5rem;
    right: 1.5rem;
}
.texto-arriba-negro{
    color: black;
    position: absolute;
    top: 6rem;
    left: 1.5rem;
    right: 1.5rem;
}
.texto-centrado-negro{
    color: black;
    position: absolute;
    top: 12rem;
    left: 1.5rem;
    right: 1.5rem;
}
.texto-centrado-negro-2{
    color: black;
    position: absolute;
    top: 20rem;
    left: 1.5rem;
    right: 1.5rem;
}
.texto-centrado{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
/** Eventos y Franquicia**/

.evento{
    display: flex;
    justify-content: space-between;
    flex-direction: row;
         }
.evento-imagen{
    flex-basis: 50%;
}
.evento-texto {
    flex-basis: calc(50% - 3rem);
    text-align:center;
    padding-top: 4rem;
}
.evento-cumpleaños{
    background-image: url(img\fondo-cumpleaños.jpg);   
    background-size: 100%;
}
.reves {
    flex-direction: row-reverse;
}

/** Redes Sociales **/
.icon {
    display: inline-block;
    stroke-width: 0;
    stroke: currentColor;
    fill: currentColor;

  }
.whatsapp{
position:fixed;
	width:60px;
	height:60px;
	bottom:40px;
	right:40px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
        font-size:30px;
	box-shadow: 2px 2px 3px #999;
  z-index:100;
}

.mi-whatsapp{
	margin-top:16px;
}
.social {
	position: fixed; /* Hacemos que la posición en pantalla sea fija para que siempre se muestre en pantalla*/
	left: 0; /* Establecemos la barra en la izquierda */
    top: 30rem; /* Bajamos la barra 300px de arriba a abajo */
	z-index: 2000; /* Utilizamos la propiedad z-index para que no se superponga algún otro elemento como sliders, galerías, etc */
    font-size: 2rem;
    
}
 
.social ul {
	list-style: none;
}
.social ul li a {
	display: inline-block;
	color:#fff;
	background: #000;
	padding: 10px 10px;
	text-decoration: none;
	-webkit-transition:all 500ms ease;
	-o-transition:all 500ms ease;
	transition:all 500ms ease; /* Establecemos una transición a todas las propiedades */
}
.social ul li .icon-facebook {
    background: rgb(18, 154, 246);} /* Establecemos los colores de cada red social, aprovechando su class */
.social ul li .icon-whatsapp {background: #00BB2D;}
.social ul li .icon-instagram {background: #8134AF;}
.social ul li .icon-youtube {background: #ae181f;}
.social ul li .icon-mail2 {background: #666666;}
.social ul li .icon-telegram {background: #0088CC;}
.social ul li a:hover {
	padding: 10px 20px; /* Hacemos mas grande el espacio cuando el usuario pase el mouse */
}
/* Banner Slider */
/*.bannerSlider{
}*/
ul.bannerSlider{
    padding-left:0;
}
.bannerSlider .slide__image::before{
    content: "";
    position: absolute;
    width: 100%;
}
.bannerSlider .slick-slide {
    position: relative;
}
.bannerSlider .slide__image img {
    width: 100%;
    object-fit:cover;
}
img.slide__image__top-position {
    object-position:center bottom;
}
.bannerSlider .slide__text {
    position: absolute;
    z-index: 100;
    text-align: center;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
}
.bannerSlider .slide__text h2 {
    font-size: 7rem;
    color: #fff;
}
.bannerSlider .slide__text h3 {
    font-size: 5rem;
    color: #fff;
}
/*
.bannerSlider {
    margin: 0 auto;
}
.bannerSlider .slick-arrow{
    position: absolute;
    top: calc(50% - 14px);
    width: 24px;
    height: 42px;
    font-size: 48px;
    z-index: 2;
    color: #fff;
}
.bannerSlider .slick-prev {
    background: url(../images/layout/slick-prev.png);
    left: 50px;
}
.bannerSlider .slick-next {
    background: url(../images/layout/slick-next.png);
    right: 50px;
}
.bannerSlider i:hover{
    cursor: pointer;
} */
.slick-slider{
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    -webkit-touch-callout: none;
       -khtml-user-select: none;
        -ms-touch-action: pan-y;
            touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}
.slick-list{
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}
.slick-list:focus{
    outline: none;
}
.slick-list.dragging{
    cursor: pointer;
    cursor: hand;
}
.slick-slider .slick-track,
.slick-slider .slick-list{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}
.slick-track{
    position: relative;
    top: 0;
    left: 0;
    display: block;
}
.slick-track:before,
.slick-track:after{
    display: table;
    content: '';
}
.slick-track:after{
    clear: both;
}
.slick-loading .slick-track{
    visibility: hidden;
}
.slick-slide{
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide{
    float: right;
}
.slick-slide img{
    display: block;
}
.slick-slide.slick-loading img{
    display: none;
}
.slick-slide.dragging img{
    pointer-events: none;
}
.slick-initialized .slick-slide{
    display: block;
}
.slick-loading .slick-slide{
    visibility: hidden;
}
.slick-vertical .slick-slide{
    display: block;
    height: auto;
    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}
/** Aviso de Cookies**/
.cookies-box {
    position: fixed;
    z-index:9999;
    bottom: 0;
    background-color: rgb(19, 19, 19, .90);
    width: 100%;
    height: 10rem;
    padding: 0rem;
    display: flex;
    justify-content: center;    
    transition: all 500ms ease-in;
    -webkit-transition: all 100ms ease-in;
    -moz-transition: all 100ms ease-in;
    -ms-transition: all 100ms ease-in;
    -o-transition:all 100ms ease-in;
}
.cookies-box .container-cookies{
    padding: 0rem;
    margin: 0rem;
    max-width: 90%;
    display: flex;
    align-items: center;
}
.cookies-box .container-cookies .parrafo{
    margin: 0rem;
}
.cookies-box .container-cookies .parrafo p {
    color:#fff;
}
.cookies-box .container-cookies .parrafo p a {
    color:rgb(161, 161, 161);
}
.cookies-box .container-cookies .botones {
    display: flex;
    flex-direction: column;
    background: transparent;
    border-radius: .8rem;
    border: 0.2rem fff;
    text-align: center;
    color: #fff;
    box-shadow: 0 9px 18px rgba(0,0,0,0.12), 0 5px 7px rgba(0,0,0,0.05);
}
.cookies-box .container-cookies .botones button {
    text-decoration: none;
    background: transparent;
    cursor: pointer;
    color: #fff;
    font-size: 1.8rem;
    padding: 0.5rem;
    border-radius: .8rem;
    border: 0.2rem solid #fff;
    transition: all 200ms ease-in;
    -webkit-transition: all 200ms ease-in;
    -moz-transition: all 200ms ease-in;
    -ms-transition: all 200ms ease-in;
    -o-transition:all 200ms ease-in;
}
.cookies-box .container-cookies .botones button:hover {
    background: #BF0005;
}
/** Slider Opiniones**/
.margenes-opiniones{
    width: 60%;
	margin: 7rem auto;
}
.slider {
	width: 100%;
}
.slider input {
	display: none;
}
.testimonials {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	min-height: 45rem;
	perspective: 100rem;
	overflow: hidden;
}
.testimonials .item {
	top: 0;
	position: absolute;
	box-sizing: border-box;
	background-color: #ffffff;
	padding: 2rem;
	width: 50rem;
    border-radius: 1.5rem 1.5rem 1.5rem 1.5rem;
    box-shadow: 2px 2px 5px rgb(0, 0, 0);
	text-align: center;
	transition: transform 0.4s;
	-webkit-transform-style: preserve-3d;
	box-shadow: 0 0 10px rgba(0,0,0,0.3);
	user-select: none;
	cursor: pointer;
}
.testimonials .item img {
	width: 100px;
	border-radius: 50%;
	border: 13px solid #000000;
}
.testimonials .item p {
	color: rgb(0, 0, 0);
}
.testimonials .item h2 {
	font-size: 1.5rem;

}
.testimonial-name {
    margin: -17px auto 0;
    display: table;
    width: auto;
    background: #BF0005;
    padding: 9px 35px;
    border-radius: 12px;
    text-align: center;
    color: #fff;
    box-shadow: 0 9px 18px rgba(0,0,0,0.12), 0 5px 7px rgba(0,0,0,0.05);
}
.dots {
	display: flex;
	justify-content: center;
	align-items: center;
}
.dots label {
	display: block;
	height: 5px;
	width: 5px;
	border-radius: 50%;
	cursor: pointer;
	background-color: #979797;
	margin: 7px;
	transition: transform 0.2s, color 0.2s;
}

/* 1º Testimonial */
#t-1:checked ~ .dots label[for="t-1"] {
	transform: scale(2);
	background-color: #BF0005;
}
#t-1:checked ~ .dots label[for="t-2"] {
	transform: scale(1.5);
}
#t-1:checked ~ .testimonials label[for="t-1"] {
	z-index: 4;
}
#t-1:checked ~ .testimonials label[for="t-2"] {
	transform: translateX(300px) translateZ(-90px) rotateY(-15deg);
	z-index: 3;
}
#t-1:checked ~ .testimonials label[for="t-3"] {
	transform: translateX(600px) translateZ(-180px) rotateY(-25deg);
	z-index: 2;
}
#t-1:checked ~ .testimonials label[for="t-4"] {
	transform: translateX(900px) translateZ(-270px) rotateY(-35deg);
	z-index: 1;
}
#t-1:checked ~ .testimonials label[for="t-5"] {
	transform: translateX(1200px) translateZ(-360px) rotateY(-45deg);
}

/* 2º Testimonial */
#t-2:checked ~ .dots label[for="t-1"] {
	transform: scale(1.5);
}
#t-2:checked ~ .dots label[for="t-2"] {
	transform: scale(2);
	background-color: #BF0005;
}
#t-2:checked ~ .dots label[for="t-3"] {
	transform: scale(1.5);
}
#t-2:checked ~ .testimonials label[for="t-1"] {
	transform: translateX(-300px) translateZ(-90px) rotateY(15deg);
}
#t-2:checked ~ .testimonials label[for="t-2"] {
	z-index: 3;
}
#t-2:checked ~ .testimonials label[for="t-3"] {
	transform: translateX(300px) translateZ(-90px) rotateY(-15deg);
	z-index: 2;
}
#t-2:checked ~ .testimonials label[for="t-4"] {
	transform: translateX(600px) translateZ(-180px) rotateY(-25deg);
	z-index: 1;
}
#t-2:checked ~ .testimonials label[for="t-5"] {
	transform: translateX(900px) translateZ(-270px) rotateY(-35deg);
}

/* 3º Testimonial */
#t-3:checked ~ .dots label[for="t-2"] {
	transform: scale(1.5);
}
#t-3:checked ~ .dots label[for="t-3"] {
	transform: scale(2);
	background-color: #BF0005;
}
#t-3:checked ~ .dots label[for="t-4"] {
	transform: scale(1.5);
}
#t-3:checked ~ .testimonials label[for="t-1"] {
	transform: translateX(-600px) translateZ(-180px) rotateY(25deg);
}
#t-3:checked ~ .testimonials label[for="t-2"] {
	transform: translateX(-300px) translateZ(-90px) rotateY(15deg);
}
#t-3:checked ~ .testimonials label[for="t-3"] {
	z-index: 3;
}
#t-3:checked ~ .testimonials label[for="t-4"] {
	transform: translateX(300px) translateZ(-90px) rotateY(-15deg);
	z-index: 2;
}
#t-3:checked ~ .testimonials label[for="t-5"] {
	transform: translateX(600px) translateZ(-180px) rotateY(-25deg);
}

/* 4º Testimonial */
#t-4:checked ~ .dots label[for="t-3"] {
	transform: scale(1.5);
}
#t-4:checked ~ .dots label[for="t-4"] {
	transform: scale(2);
	background-color: #BF0005;
}
#t-4:checked ~ .dots label[for="t-5"] {
	transform: scale(1.5);
}
#t-4:checked ~ .testimonials label[for="t-1"] {
	transform: translateX(-900px) translateZ(-270px) rotateY(35deg);
}
#t-4:checked ~ .testimonials label[for="t-2"] {
	transform: translateX(-600px) translateZ(-180px) rotateY(25deg);
}
#t-4:checked ~ .testimonials label[for="t-3"] {
	transform: translateX(-300px) translateZ(-90px) rotateY(15deg);
	z-index: 2;
}
#t-4:checked ~ .testimonials label[for="t-4"] {
	z-index: 3;
}
#t-4:checked ~ .testimonials label[for="t-5"] {
	transform: translateX(300px) translateZ(-90px) rotateY(-15deg);
}

/* 5º Testimonial */
#t-5:checked ~ .dots label[for="t-4"] {
	transform: scale(1.5);
}
#t-5:checked ~ .dots label[for="t-5"] {
	transform: scale(2);
	background-color: #BF0005;
}
#t-5:checked ~ .testimonials label[for="t-1"] {
	transform: translateX(-1200px) translateZ(-360px) rotateY(45deg);
}
#t-5:checked ~ .testimonials label[for="t-2"] {
	transform: translateX(-900px) translateZ(-270px) rotateY(35deg);
	z-index: 1;
}
#t-5:checked ~ .testimonials label[for="t-3"] {
	transform: translateX(-600px) translateZ(-180px) rotateY(25deg);
	z-index: 2;
}
#t-5:checked ~ .testimonials label[for="t-4"] {
	transform: translateX(-300px) translateZ(-90px) rotateY(15deg);
	z-index: 3;
}
#t-5:checked ~ .testimonials label[for="t-5"] {
	z-index: 4;
}
.detalle-salas {
    position: relative;
    display: inline-block;
    margin: 20px;
    max-width: 190px;
    width: 100%;
    color: #bbb;
    font-size: 16px;
    box-shadow: none !important;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  
  .detalle-salas *,
  .detalle-salas:before,
  .detalle-salas:after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
  }
  
  .detalle-salas:before,
  .detalle-salas:after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 50%;
    content: '';
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    z-index: -1;
    border: 2px solid #bbb;
    border-color: transparent #bbb;
  }
  
  .detalle-salas img {
    max-width: 100%;
    backface-visibility: hidden;
    vertical-align: top;
    border-radius: 50%;
    padding: 10px;
  }
  
  .detalle-salas figcaption {
    position: absolute;
    top: 5px;
    bottom: 5px;
    left: 5px;
    right: 5px;
    opacity: 0;
    background-color: rgba(0, 0, 0, 0.9);
    border-radius: 50%;
  }
  
  .detalle-salas p {
    position: absolute;
    top: 18%;
    left: 20%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    font-size: 2rem;
    z-index: 1;
  }
  
  .detalle-salas a {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
  }
  
  .detalle-salas:hover figcaption,
  .detalle-salas.hover figcaption {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  
  .detalle-salas:hover:before,
  .detalle-salas.hover:before,
  .detalle-salas:hover:after,
  .detalle-salas.hover:after {
    border-width: 10px;
  }
  
  .detalle-salas:hover:before,
  .detalle-salas.hover:before {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  
  .detalle-salas:hover:after,
  .detalle-salas.hover:after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
/* Fonts Iconos */
@font-face {
    font-family: 'icomoon';
    src:  url('../font2/icomoon.eot?9q5qb1');
    src:  url('../fonts2/icomoon.eot?9q5qb1#iefix') format('embedded-opentype'),
      url('../fonts2/icomoon.ttf?9q5qb1') format('truetype'),
      url('../fonts2/icomoon.woff?9q5qb1') format('woff'),
      url('../fonts2/icomoon.svg?9q5qb1#icomoon') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: block;
  }
  
  [class^="icon-"], [class*=" icon-"] {
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: 'icomoon' !important;
    speak: never;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
  
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  
  .icon-mail2:before {
    content: "\ea84";
  }
  .icon-facebook:before {
    content: "\ea90";
  }
  .icon-instagram:before {
    content: "\ea92";
  }
  .icon-whatsapp:before {
    content: "\ea93";
  }
  .icon-telegram:before {
    content: "\ea95";
  }
  .icon-youtube:before {
    content: "\ea9d";
  }


/** Mobile (min-width: 320px) and (max-width: 480px)**/

/** Mobile o Low Tablets (min-width: 481px) and (max-width: 767px)**/

/** Tablets (min-width: 768px) and (max-width: 1024px) **/
@media screen and (max-width: 1366px) {
    .menu .enlaces {
        display: inline-block;
        text-align: right;
        font-size: 1.3rem;
    }
    .menu .logo img {
        vertical-align: center;
        max-width: 60%;
    }
    .evento{
        display: flex;
        justify-content: space-between;
        flex-direction: column;
        }
}

@media screen and (max-width: 1024px) {

    body {    
        background-image: url(../img2/logic_wallpaper_sm.webp);
    }
h1{
    font-size: 4.5rem;
    text-align: center;
    margin: 1rem;
}
h2{ font-size: 4.5rem;
    text-align: center;
    margin: 1rem;

}

h3 {
    font-size: 3rem;
    color: black;
    text-align: center;
    margin: 0rem;
    }
    
h4 {
    font-size: 2.5rem;
    color: black;
    text-align: center;
    margin: 1rem;
    }
.evento{
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    }
.imagenes-gral{
    display: flex;
    justify-content: space-between;
    text-align: center;
    position: static;
    flex-direction: column;
    max-width: 100%;
    }
.imagenes-gral-3{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    text-align: center;
    position: static;
    padding: 0rem 3rem;
    align-items: center;
    flex-direction: row;
    }
.imagenes-gral-2{
    display: flex;
    justify-content: left;
    position: static;
    padding: 0rem 10rem;
    align-content: left;
    flex-direction: column;
    align-items: flex-start;
    }   
.iconos-poster{
    display: flex;
    height: 2.5rem;
    width: 2.5rem;
    margin-top: 3rem;
    flex-basis: calc(33.3% - 1rem);
    flex-direction: row;
    }
.texto-arriba-negro{
    color: black;
    position: absolute;
    top: 7rem;
    left: 1rem;
    right: 1.5rem;
    }
.texto-centrado-negro{
    color: black;
    position: absolute;
    top: 15rem;
    left: 1rem;
    right: 1.5rem;
    }
.texto-centrado-negro-2{
    color: black;
    position: absolute;
    top: 20rem;
    left: 1rem;
    right: 1.5rem;
    }

footer{
    font-size: 0.5rem;
    }
.wrapper {
    width:100%;
    max-width: 160rem;
    margin: auto;
    overflow: hidden;
    }
.wrapper-2 {
    width:100%;
    max-width: 80%;
    margin: auto;
    overflow: hidden;
    }
.cuerpo-form p{
      font-size: 13px;
      margin: 0;
    }
    #opiniones{
        display:none;
    }
/** Mobile Menu**/

header .menu {
    flex-direction: column;
}
.menu .logo img {
    vertical-align: center;
    max-width: 50%;
}    
header .menu .logo {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    padding: 1rem;
}
header .menu .logo .btn-menu {
    display: inline-block;
}
header .menu .enlaces {
    width: 100%;
    display: flex;
    flex-direction: column;
}

/** Banner Imagenes**/

.banner .lg{
    display:none;
    max-height: 100%;
}
.banner .md{
    display: block;
}
footer{
 display: none;
}

.formulario-grupo {
    font-size: 1.3rem;
}
.cuerpo-blog {
    width: 80%;
    margin-left: 10%;   
}
.cuerpo-blog p {
    font-size: 1.3rem;
}
.social {
	position: fixed; /* Hacemos que la posición en pantalla sea fija para que siempre se muestre en pantalla*/
	left: 20%; /* Establecemos la barra en la izquierda */
    top: 94%; /* Bajamos la barra 300px de arriba a abajo */
	z-index: 2000; /* Utilizamos la propiedad z-index para que no se superponga algún otro elemento como sliders, galerías, etc */
    font-size: 2rem;
    
}
.social ul {
		list-style: none;
       display: flex;
       flex-direction: row;
	}
 
.social ul li a {
		display: inline-block;
		color:#fff;
		background: #000;
		padding: 10px 10px;
		text-decoration: none;
		-webkit-transition:all 500ms ease;
		-o-transition:all 500ms ease;
		transition:all 500ms ease; /* Establecemos una transición a todas las propiedades */
        
	}
 
.social ul li .icon-facebook {background: rgb(18, 154, 246);} /* Establecemos los colores de cada red social, aprovechando su class */
.social ul li .icon-whatsapp {background: #00BB2D;}
.social ul li .icon-instagram {background: #8134AF;}
.social ul li .icon-youtube {background: #ae181f;}
.social ul li .icon-mail2 {background: #666666;}
.social ul li .icon-telegram {background: #0088CC;}
 
.social ul li a:hover {
		 /* Cambiamos el fondo cuando el usuario pase el mouse */
		padding: 10px 10px; /* Hacemos mas grande el espacio cuando el usuario pase el mouse */
	}
}
@media screen and (max-width: 768px) {

    .detalle-salas {
        position: relative;
        align-items: stretch;
        margin: 2px;
        max-width: 85px;
        width: 100%;
        color: #bbb;
        font-size: 8px;
        box-shadow: none !important;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
      }
    .detalle-salas img {
        max-width: 100%;
        backface-visibility: hidden;
        vertical-align: top;
        border-radius: 50%;
        padding: 5px;
      }
    
      .detalle-salas p {
        position: absolute;
        top: 0%;
        left: 0%;
        -webkit-transform: translate(-85%, -130%);
        transform: translate(-85%, -130%);
        font-size: 1rem;
        z-index: 1;
      }
    
    }
@media screen and (max-width: 400px) {

body {    
    background-image: url(../img2/logic_wallpaper_sm.webp);
}
h1{
    font-size: 3rem;
    text-align: center;
    margin: 1rem;
}
h2{ 
    font-size: 3rem;
    text-align: center;
    margin: 1rem;
}  
h3 {
    font-size: 3rem;
    color: black;
    text-align: center;
    margin: 0rem;
}
h4 {
    font-size: 2rem;
    color: black;
    text-align: center;
    margin: 1rem;
}

p {
    font-size: 1.5rem;
}

.texto-arriba-negro{
    top: 3rem;
    left: 1rem;
    right: 1.5rem;
}
.texto-centrado-negro{
    top: 8rem;
    left: 1rem;
    right: 1.5rem;
}
.texto-centrado-negro-2{
    top: 9rem;
    left: 1rem;
    right: 1.5rem;
}
.nota-blog{
    background-color:rgb(19, 19, 19);
    width:100%;
    max-width: 160rem;
    margin: auto;
}
.texto-blog img{
    display: none;
    margin: 0 0 0 4%;
    width: 15%;
}

#opiniones{
    display:none;
}
.social {
	position: fixed; /* Hacemos que la posición en pantalla sea fija para que siempre se muestre en pantalla*/
	left: 15%; /* Establecemos la barra en la izquierda */
    top: 94%; /* Bajamos la barra 300px de arriba a abajo */
	z-index: 2000; /* Utilizamos la propiedad z-index para que no se superponga algún otro elemento como sliders, galerías, etc */
    font-size: 2rem;
    
}
.social ul {
		list-style: none;
       display: flex;
       flex-direction: row;
	}
 
.social ul li a {
		display: inline-block;
		color:#fff;
		background: #000;
		padding: 10px 10px;
		text-decoration: none;
		-webkit-transition:all 500ms ease;
		-o-transition:all 500ms ease;
		transition:all 500ms ease; /* Establecemos una transición a todas las propiedades */
        
	}
 
.social ul li .icon-facebook {background: rgb(18, 154, 246);} /* Establecemos los colores de cada red social, aprovechando su class */
.social ul li .icon-whatsapp {background: #00BB2D;}
.social ul li .icon-instagram {background: #8134AF;}
.social ul li .icon-youtube {background: #ae181f;}
.social ul li .icon-mail2 {background: #666666;}
.social ul li .icon-telegram {background: #0088CC;}
 
.social ul li a:hover {
		 /* Cambiamos el fondo cuando el usuario pase el mouse */
		padding: 10px 10px; /* Hacemos mas grande el espacio cuando el usuario pase el mouse */
	}



/** Banner Imagenes**/
.banner .lg{
    display:none;
}    
.banner .md{
    display:none;
}
.banner .sm{
    display: block;
}
.bannerSlider .slide__text h2 {
    font-size: 4rem;
    color: #fff;
}
.bannerSlider .slide__text h3 {
    font-size: 2rem;
    color: #fff;
}
footer{
    display: none;
}
.boton{
    display: flex;
    justify-content: space-around;
    margin-left: 75%;
    color:white;
    padding: 0.5rem 0.5rem;
    width: 25%;
    text-decoration: none;
}
figure.burbuja h2 {
    font-size: 2rem;
    color: #ffffff;
  }
figure.burbuja h3 {
    font-size: 1.8rem;
    color: #ffffff;
  }
figure.burbuja p {
    font-size: 1rem;
    color: #ffffff;
  }
/** Cookies**/
.cookies-box .container-cookies{
    padding: 0rem 0rem;
    max-width: 90%;
 
    display: flex;
    align-items: center;
}
.cookies-box .container-cookies .parrafo p {
    margin-left:10%;
    width: 80%;
    font-size: 1rem;
}
.cookies-box .container-cookies .parrafo p a {
    width: 80%;
    font-size: 1rem;
}
.cookies-box .container-cookies .botones {
    font-size: 1rem;
}
.cookies-box .container-cookies .botones button {
    font-size: 1rem;
    padding: 0.5rem;
    border-radius: .8rem;
    border: 0.1rem solid #fff;
    transition: all 200ms ease-in;
    -webkit-transition: all 200ms ease-in;
    -moz-transition: all 200ms ease-in;
    -ms-transition: all 200ms ease-in;
    -o-transition:all 200ms ease-in;
}
.imagen-2{
    flex-basis: calc(25% - 1rem);
    padding: -1rem 1rem;
margin: 1rem 1rem;
}
}